/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Importing font */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');


.syncopate-regular {
    font-family: "Syncopate", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.syncopate-active {
    font-family: "Syncopate", sans-serif;
    font-weight: 550;
    font-style: italic;
}

.syncopate-bold {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-style: normal;
}


.profile-icon {
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.profile-icon:hover {
    color: #a7a7a7;
    background-color: rgba(0, 0, 0, 0.4);
}

.profile-icon i {
    transition: transform 0.3s ease;
}

.profile-icon:hover i {
    transform: scale(1.1);
}


.section-divider {
    border: none;
    height: 2px;
    background-color: #ffffff; /* White color */
    width: 100%;               /* Full width */
    margin: 60px 0;            /* Optional spacing */
}

body {
    background: url("/AWD-Xplora-Fuecoco-TEST/pages/About Us/assets/img/V1.jpg") center center / cover;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}


.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: white;
}


/* Updated Logo Styling */
.logo {
    position: absolute;
    padding-top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}


.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}


.right-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 2%;
}


.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 1rem;
}


.active-page {
    position: relative;
    display: inline-block;
    color: aliceblue;
}


.active-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: aliceblue;
    bottom: -3px;
    left: 0;
}


.nav-links li {
    margin: 0 10px;
}


.nav-links li a {
    text-decoration: none;
    color: white;
}


.auth-links {
    display: flex;
    gap: 15px;
    flex: 2;
    justify-content: flex-end;
}


.auth-links button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 3px 15px;
    color: white;
    cursor: pointer;
    border-radius: 50px;
}

/* Hero Section */

.hero {
    text-align: center;
    padding: 5rem;
    font-family: 'Syncopate';
    color: white;
}

.hero p {
    padding-bottom: 30px;
}

.xplora_logo {
    height: 200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.fuecoco_logo {
    height: 200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-box {
    font-family: "syncopate";
    width: 280px;
    height: 70px;
    padding: 20px 20px 20px 10px;
    background-color: rgb(92, 92, 92);
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 1px;
    text-align: left;
    position: relative;
    margin-right: 20px;
    z-index: 2;
    cursor: pointer;
  

    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Remove margin from last button */
.link-box:last-child {
    margin-right: 0;
}


/* Hover effect */
.link-box:hover {
    background-color: #fff;
    color: rgb(92, 92, 92);
}


/* Focus effect (optional for accessibility) */
.link-box:focus {
    outline: none;
    background-color: #ccc;
    color: rgb(92, 92, 92);
}

.container {
    max-width: 1000px;
    margin: auto;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.member {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}
.member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.member h3 {
    font-size: 1.2rem;
    font-weight: 600;
}
.member p {
    font-size: 1rem;
    color: white;
}

aside {
    padding: 2rem;
    font-family: 'Syncopate';
    color: white;
}

aside h2 {
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.social-icons .facebook { background-image: url('../img/V2.png'); } 
.social-icons .instagram { background-image: url('../img/V3.webp'); }
.social-icons .other { background-image: url('../img/V4.webp'); }

.learn-more {
    text-decoration: none;
    color: black;
    font-weight: 510;
    padding: 10px;
    width: 210px;
    background-color: whitesmoke;
    border-radius: 5px;
}

.contact-section {
    background-color: #11111100;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;  
  }
 
  .contact-section h2 {
    font-family: "syncopate";
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
 
  .contact-box {
    font-family: "syncopate";
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 5px 5px 0px #ccc;
  }
 
  .contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }
 
  .contact-icon {
    font-size: 24px;
    margin-right: 15px;
  }
 
  .contact-item p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
  }
 
  /* Optional Responsive */
  @media (max-width: 600px) {
    .contact-box {
      padding: 20px;
    }
 
    .contact-item p {
      font-size: 14px;
    }
  }
 


 




/* Footer Section */
.footer {
    background-color: #59595900;
    color: #fff;
    padding: 0px 50px;
    font-family: Arial, sans-serif;
    font-family: "syncopate";
    text-align: center;
    width: 100%;               /* Full width */
  }
 
  .footer-container {
    display: flex;
    justify-content: space-evenly; /* Even spacing */
    align-items: flex-start;
    flex-wrap: wrap;
  }
 
  .footer-logo h2 {
    font-size: 30px;
    font-weight: bold;
  }
 
  .footer-logo p {
    font-size: 14px;
    margin-top: 8px;
    color: #ccc;
  }
 
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
 
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
 
  .footer-column ul li {
    margin-bottom: 10px;
  }
 
  .footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
 
  .footer-column ul li a:hover {
    color: #fff;
  }
 
  .footer-subscribe {
    max-width: 250px;
  }
 
  .footer-subscribe p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
  }
 
  .subscribe-btn {
    background-color: #ccc;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
 
  .subscribe-btn:hover {
    background-color: #fff;
  }

/* Media Queries for Responsiveness */

/* iPhone 6 - 375x667 */
@media screen and (max-width: 375px) {
    body {
        font-size: 14px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    header {
        flex-direction: column;
        padding: 10px;
        height: auto;
    }
    
    .logo {
        position: relative;
        padding-top: 0.5rem;
        margin-bottom: 10px;
    }
    
    .logo img {
        max-height: 30px;
    }
    
    nav {
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-links li {
        margin: 5px 0;
    }
    
    .profile-icon {
        margin-top: 10px;
    }
    
    .hero {
        padding: 80px 15px 30px;
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .xplora_logo, .fuecoco_logo {
        height: 120px;
        padding: 20px;
    }
    
    .hero p {
        font-size: 14px;
        padding: 0 10px;
        margin: 15px 0;
    }
    
    .link-box {
        width: 220px;
        height: 50px;
        font-size: 14px;
        padding: 10px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .container h1 {
        font-size: 22px;
        margin: 20px 0;
    }
    
    .team {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .member {
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }
    
    .member img {
        width: 80px;
        height: 80px;
    }
    
    .member h3 {
        font-size: 16px;
    }
    
    .member p {
        font-size: 14px;
    }
    
    aside {
        padding: 20px 15px;
    }
    
    aside h2 {
        font-size: 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-section h2 {
        font-size: 24px;
    }
    
    .contact-box {
        padding: 15px;
        max-width: 100%;
    }
    
    .contact-item {
        margin: 10px 0;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
    
    .section-divider {
        margin: 30px 0;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-logo, .footer-column, .footer-subscribe {
        width: 100%;
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 24px;
    }
    
    .footer-logo p {
        font-size: 12px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-column ul li {
        margin: 0;
    }
    
    .footer-subscribe p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .subscribe-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* iPad - 1024x768 */
@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    header {
        flex-direction: column;
        padding: 15px;
        height: auto;
    }
    
    .logo {
        position: relative;
        padding-top: 0.5rem;
        margin-bottom: 10px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    nav {
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 15px;
    }
    
    .profile-icon {
        margin-top: 10px;
    }
    
    .hero {
        padding: 100px 30px 40px;
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .xplora_logo, .fuecoco_logo {
        height: 150px;
        padding: 30px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 20px;
        margin: 20px 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .link-box {
        width: 240px;
        height: 60px;
        font-size: 16px;
        padding: 15px;
    }
    
    .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .container h1 {
        font-size: 26px;
        margin: 30px 0;
    }
    
    .team {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .member {
        width: calc(50% - 20px);
        max-width: 300px;
        padding: 20px;
    }
    
    .member img {
        width: 90px;
        height: 90px;
    }
    
    .member h3 {
        font-size: 18px;
    }
    
    .member p {
        font-size: 16px;
    }
    
    aside {
        padding: 30px 20px;
    }
    
    aside h2 {
        font-size: 24px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-section h2 {
        font-size: 28px;
    }
    
    .contact-box {
        padding: 20px;
        max-width: 500px;
    }
    
    .contact-item {
        margin: 15px 0;
    }
    
    .contact-icon {
        font-size: 22px;
    }
    
    .contact-item p {
        font-size: 16px;
    }
    
    .section-divider {
        margin: 40px 0;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .footer-logo, .footer-column, .footer-subscribe {
        flex: 1 1 300px;
        max-width: 300px;
    }
    
    .footer-logo h2 {
        font-size: 28px;
    }
    
    .footer-logo p {
        font-size: 14px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-column ul li {
        margin: 0;
    }
    
    .footer-subscribe p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .subscribe-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Laptop - 1440x900 */
@media screen and (max-width: 1440px) {
    body {
        font-size: 18px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    header {
        padding: 20px;
    }
    
    .logo {
        position: absolute;
        padding-top: 1rem;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    nav {
        width: 100%;
    }
    
    .hero {
        padding: 120px 40px 50px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .xplora_logo, .fuecoco_logo {
        height: 180px;
        padding: 40px;
    }
    
    .hero p {
        font-size: 18px;
        padding: 0 30px;
        margin: 25px 0;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .link-box {
        width: 260px;
        height: 65px;
        font-size: 18px;
        padding: 15px 20px;
    }
    
    .container {
        max-width: 90%;
        padding: 0 30px;
    }
    
    .container h1 {
        font-size: 30px;
        margin: 40px 0;
    }
    
    .team {
        gap: 25px;
    }
    
    .member {
        max-width: 320px;
        padding: 25px;
    }
    
    .member img {
        width: 100px;
        height: 100px;
    }
    
    .member h3 {
        font-size: 20px;
    }
    
    .member p {
        font-size: 18px;
    }
    
    aside {
        padding: 40px 30px;
    }
    
    aside h2 {
        font-size: 28px;
    }
    
    .social-icons {
        gap: 25px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .contact-section {
        padding: 40px 30px;
    }
    
    .contact-section h2 {
        font-size: 32px;
    }
    
    .contact-box {
        padding: 25px;
        max-width: 600px;
    }
    
    .contact-item {
        margin: 20px 0;
    }
    
    .contact-icon {
        font-size: 24px;
    }
    
    .contact-item p {
        font-size: 18px;
    }
    
    .section-divider {
        margin: 50px 0;
    }
    
    .footer {
        padding: 40px 30px;
    }
    
    .footer-container {
        gap: 40px;
    }
    
    .footer-logo h2 {
        font-size: 32px;
    }
    
    .footer-logo p {
        font-size: 16px;
    }
    
    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-column ul {
        gap: 12px;
    }
    
    .footer-subscribe p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .subscribe-btn {
        padding: 12px 24px;
        font-size: 18px;
    }
}

/* Desktop - 1920x1080 */
@media screen and (min-width: 1920px) {
    body {
        font-size: 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    header {
        padding: 25px;
    }
    
    .logo {
        position: absolute;
        padding-top: 1.5rem;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    nav {
        width: 100%;
    }
    
    .hero {
        padding: 150px 60px 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .xplora_logo, .fuecoco_logo {
        height: 200px;
        padding: 50px;
    }
    
    .hero p {
        font-size: 20px;
        padding: 0 40px;
        margin: 30px 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .link-box {
        width: 280px;
        height: 70px;
        font-size: 20px;
        padding: 20px;
    }
    
    .container {
        max-width: 80%;
        padding: 0 40px;
    }
    
    .container h1 {
        font-size: 34px;
        margin: 50px 0;
    }
    
    .team {
        gap: 30px;
    }
    
    .member {
        max-width: 350px;
        padding: 30px;
    }
    
    .member img {
        width: 120px;
        height: 120px;
    }
    
    .member h3 {
        font-size: 22px;
    }
    
    .member p {
        font-size: 20px;
    }
    
    aside {
        padding: 50px 40px;
    }
    
    aside h2 {
        font-size: 32px;
    }
    
    .social-icons {
        gap: 30px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
    }
    
    .contact-section {
        padding: 50px 40px;
    }
    
    .contact-section h2 {
        font-size: 36px;
    }
    
    .contact-box {
        padding: 30px;
        max-width: 700px;
    }
    
    .contact-item {
        margin: 25px 0;
    }
    
    .contact-icon {
        font-size: 26px;
    }
    
    .contact-item p {
        font-size: 20px;
    }
    
    .section-divider {
        margin: 60px 0;
    }
    
    .footer {
        padding: 50px 40px;
    }
    
    .footer-container {
        gap: 50px;
    }
    
    .footer-logo h2 {
        font-size: 36px;
    }
    
    .footer-logo p {
        font-size: 18px;
    }
    
    .footer-column h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .footer-column ul {
        gap: 15px;
    }
    
    .footer-subscribe p {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .subscribe-btn {
        padding: 15px 30px;
        font-size: 20px;
    }
}